Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
remark-remove-comments
Advanced tools
Remark plugin to remove HTML comments from the processed output.
npm:
npm install remark-remove-comments
Say we have the following file, example.md
:
# Hello World
This is a markdown file, with text in it.
<!-- But in this file there's a comment, like "TODO: fix 😅",
I don't want this to appear in the HTML output, it's just for me -->
And our script, example.js
, looks as follows:
const fs = require('fs');
const remark = require('remark');
const removeComments = require('remark-remove-comments');
remark()
.use(removeComments)
.process(fs.readFileSync('example.md', 'utf-8'), function (err, file) {
if (err) throw err;
console.log(String(file));
});
Now, running node example
yields:
# Hello World
This is a markdown file, with text in it.
remark().use(removeComments)
Removes comments.
FAQs
Remark plugin to remove HTML comments from the processed output
The npm package remark-remove-comments receives a total of 1,716 weekly downloads. As such, remark-remove-comments popularity was classified as popular.
We found that remark-remove-comments demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.